What If I Went Viral?
@ZaraPlays just posted a video that's blowing up. PixelUp needs to know: how much more money will she actually make โ and which of our creators are on track to hit their revenue targets?
- IF function โ automatically flag creators as "On Track" or "Needs Work"
- MAX and MIN โ instantly find the best and worst performers
- Named ranges โ name your Growth Multiplier cell
- Sorting โ rank creators by projected revenue
- Scenario modelling โ change one cell, see everything update
Import & Set Up
The L3 starter CSV includes each creator's current total revenue and their monthly target. Import it and set up your Growth Multiplier.
starter.csv. Choose Replace current sheet and Comma separator.Growth Multiplier and in B1 type 1.0. This is your single control for all three scenarios.Projected Views & Revenue
Use the Growth Multiplier to calculate what happens to views and revenue when a creator grows.
IF Function โ Status Column
Write an IF formula that automatically labels each creator as "On Track" or "Needs Work" based on whether their projected revenue beats their target.
"On Track" must have quotes โ without them, Google Sheets will show an error because it thinks "On" and "Track" are separate cell references.MAX, MIN & Sorting
Find the top and bottom performers, then sort your data so the best creators appear first.
Test Your Scenarios
Your model is ready. Now ask the question that matters: what actually happens when @ZaraPlays goes viral?
Going Further
Make the viral scenario more realistic by splitting it into its actual components.
Instead of just "On Track" or "Needs Work", create a three-level system using a nested IF:
- "Smashing It" โ if Projected Revenue > 120% of target
- "On Track" โ if Projected Revenue is between 90% and 120% of target
- "Needs Work" โ if Projected Revenue < 90% of target
Nested IF formula structure:
=IF(H3>E3*1.2,"Smashing It",IF(H3>E3*0.9,"On Track","Needs Work"))
The current model applies the growth multiplier to ALL revenue. But in reality, going viral only affects ad revenue (more views = more ads). Sponsorship and merch stay the same (deals are already signed).
- Split the Projected Revenue formula into two parts: Ad Revenue (scaled by multiplier) + Sponsorship + Merch (not scaled)
- You'll need to bring in the individual revenue columns from your L2 model
- How much lower is the "viral" revenue compared to your simplified model?
Scenario Model โ Built!
You can now answer "what if" questions with real data. Next lesson: making sure the data going in is always valid.
- How to model "what if" scenarios by changing a single input cell
- How to use
=IF(condition, value_if_true, value_if_false) - How to use
=MAX(range)and=MIN(range) - How to sort a dataset in Google Sheets without scrambling the rows
- Why realistic input values are critical โ "garbage in, garbage out"